### Project 3 Walk Along the Tightrope **1.Description** It's the little monkey Kongkong's turn now, are you interested in him? Let’s see what is his special skill. Task analysis | Role | Monkey Kongkong | | ------ | ------------------------------------------------------------ | | Place | Theater | | Result | 1. Kongkong will stand at the stage and say "Hello, everyone! I will show you a tightrope walk!"
2. Kongkong moves to the tightrope
3. Kongkong walks on the tightrope | **2.Practice** 1.Select the background of the theater Then click the background library icon ![](media/wps1-1764926076750-1.jpg) in the lower right corner to select Theater. ![](media/image-20251205171451568.png) 2.Select a monkey Click![](media/wps2-1764926108769-3.jpg)to delete the beetle role--->Click”Choose a Sprite”--->Select “Monkey”role. ![](media/image-20251205171535558.png) ![](media/image-20251205171543284.png) ![](media/image-20251205171551712.png) 3.Modify the position and size of the role (you can also drag the role to the position in the picture) X:-125 Y:-82 Size:70 ![](media/image-20251205171625224.png) 4.Use the line tool in ![](media/wps3-1764926197957-5.jpg) and draw a straight line in the drawing area with a black border and no fill color(hold down the Shift key on the keyboard can draw a straight line). ![](media/image-20251205171659315.png) 5.Select the role "tightrope" in the stage area, and drag it to a suitable position on the stage. ![](media/image-20251205171725358.png) 6.Build the program ①Drag the "When space key pressed" code block from the Events bar. ![](media/image-20251205171759935.png) ②Drag the ”go to x: y: ”code block from the Motion bar and change the value to X:-2 y:-90. ![](media/image-20251205171830792.png) ③Drag ”say Hello! For 2 seconds“ code block from the Looks bar,and change ”Hello!” to “hello everyone!”. ![](media/image-20251205171931240.png) ④Drag ”say Hello! For 2 seconds“code block from the Looks bar,and change”Hello!”to“Let me show you how to walk the tightrope!”. ![](media/image-20251205172003157.png) ⑤Drag the ”go to x: y: ”code block from the Motion bar and change the value to X:-183 y:-36. ![](media/image-20251205172236264.png) ⑥Drag the ”forever” block from the Control bar. ![](media/image-20251205172306849.png) ⑦Drag the“move 10 steps”block from the Motion bar. ![](media/image-20251205172333860.png) ⑧Drag the“set rotation style......”block from the Motion bar and set it to left-right. ![](media/image-20251205172430810.png) ⑨Drag the“if on edge,bounce”block from the Motion bar. ![](media/image-20251205172537210.png) ⑩Save the project and name it "Walk Along the Tightrope". **3.Complete Program** ![](media/image-20251205172733147.png) **4.Test Result** When we press the "space bar" on the keyboard, the program starts to run. Then the monkey Kongkong will walk to the middle of the stage and say: “hello everyone!". Let me show you how to walk the tightrope! And he will perform, as shown below: ![](media/image-20251205173043989.png) ![](media/image-20251205173052439.png) **5.Program Explanation** | Instruction | Function | Module | | -------------------------------------- | ------------------------------------------------------------ | ---------- | | ![](media/image-20251205173213529.png) | If the space bar is clicked, then the instructions below will be executed | Event | | ![](media/image-20251205173242704.png) | Kongkong will walk to the middle of the stage | Movement | | ![](media/image-20251205173307996.png) | The role says“hello everyone!”for 2s and both the content and duration of the talk can be changed. | Appearance | | ![](media/image-20251205173331530.png) | Kongkong will walk to the tightrope | Movement | | ![](media/image-20251205173402816.png) | Kongkong will move left and right with 10 steps at a time. The rotate mode is flip left and right, if touch the edge, then the edge will rebound. | |